home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Macintosh Memory
/
MemoryError.cp
< prev
next >
Wrap
Text File
|
2000-06-23
|
268b
|
18 lines
// MemoryError.cp
#ifndef MemoryError_h
#include "MemoryError.h"
#endif
void MemoryError::ThrowCurrent()
{
OSErr error = MemError();
if ( error != noErr )
throw MemoryError( error );
}
void MemoryError::DebugCurrent()
{
OSError::Debug( MemError() );
}